com.sabro.jbusiness.sys
Enum SysFiltro.SysFiltroEventType

java.lang.Object
  extended by java.lang.Enum<SysFiltro.SysFiltroEventType>
      extended by com.sabro.jbusiness.sys.SysFiltro.SysFiltroEventType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SysFiltro.SysFiltroEventType>
Enclosing class:
SysFiltro

public static enum SysFiltro.SysFiltroEventType
extends java.lang.Enum<SysFiltro.SysFiltroEventType>


Enum Constant Summary
SYSFILTRO_CHANGED
          Disparado quando um sysFiltro tem sua estrutura alterada
SYSFILTRO_INSERTED
          Disparado quando um sysFiltro é adicionado na hierarquia
SYSFILTRO_REMOVED
          Disparado quando um sysFiltro é excluido da hierarquia
SYSFILTRO_REQUEST_SELECTION
          Disparado quando ocorre requisição de seleção do filtro
SYSFILTRO_UPDATED
          Disparado quando um sysFiltro é alterado
SYSFILTROTABELA_INVALIDATED
          Disparado quando os campos do filtro são invalidados
SYSFILTROTABELA_REVALIDATED
          Disparado quando os campos do filtro são revalidados
 
Method Summary
static SysFiltro.SysFiltroEventType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SysFiltro.SysFiltroEventType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SYSFILTROTABELA_INVALIDATED

public static final SysFiltro.SysFiltroEventType SYSFILTROTABELA_INVALIDATED
Disparado quando os campos do filtro são invalidados


SYSFILTROTABELA_REVALIDATED

public static final SysFiltro.SysFiltroEventType SYSFILTROTABELA_REVALIDATED
Disparado quando os campos do filtro são revalidados


SYSFILTRO_REQUEST_SELECTION

public static final SysFiltro.SysFiltroEventType SYSFILTRO_REQUEST_SELECTION
Disparado quando ocorre requisição de seleção do filtro


SYSFILTRO_UPDATED

public static final SysFiltro.SysFiltroEventType SYSFILTRO_UPDATED
Disparado quando um sysFiltro é alterado


SYSFILTRO_INSERTED

public static final SysFiltro.SysFiltroEventType SYSFILTRO_INSERTED
Disparado quando um sysFiltro é adicionado na hierarquia


SYSFILTRO_REMOVED

public static final SysFiltro.SysFiltroEventType SYSFILTRO_REMOVED
Disparado quando um sysFiltro é excluido da hierarquia


SYSFILTRO_CHANGED

public static final SysFiltro.SysFiltroEventType SYSFILTRO_CHANGED
Disparado quando um sysFiltro tem sua estrutura alterada

Method Detail

values

public static SysFiltro.SysFiltroEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SysFiltro.SysFiltroEventType c : SysFiltro.SysFiltroEventType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SysFiltro.SysFiltroEventType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null